home *** CD-ROM | disk | FTP | other *** search
/ Club KidSoft Volume 3 #2 / CKSPCV32.BIN / movies / clubroom.dir / 00184_Script_stay here < prev    next >
Text File  |  1995-04-03  |  720b  |  21 lines

  1. on enterFrame
  2.   if the castNum of sprite 2 <> 0 and rollover(2) then
  3.     cursor [the number of cast "cursorStraight", the number of cast "maskStraight"]
  4.     updatestage
  5.   else if the castNum of sprite 3 <> 0 and rollover(3) then
  6.     cursor  [the number of cast "cursorLeft", the number of cast "maskLeft"]
  7.     updatestage
  8.   else if the castNum of sprite 4 <> 0 and rollover(4) then
  9.     cursor  [the number of cast "cursorBack", the number of cast "maskBack"]
  10.     updatestage
  11.   else if the castNum of sprite 5 <> 0 and rollover(5) then
  12.     cursor  [the number of cast "cursorRight", the number of cast "maskRight"]
  13.     updatestage
  14.   else
  15.     cursor 0
  16.   end if
  17.   
  18. end
  19. on exitFrame
  20.   go to the frame
  21. end